ArcFM Responder Mobile Developer Guide
ParseArguments(String[],Object) Method






The actual arguments. The actual arguments.
The resulting parsed arguments. The resulting parsed arguments.
Parses Command Line Arguments. Errors are output on Console.Error. Use ArgumentAttributes to control parsing behaviour. Parses Command Line Arguments. Errors are output on Console.Error. Use ArgumentAttributes to control parsing behavior.
Syntax
'Declaration
 
Public Overloads Shared Function ParseArguments( _
   ByVal arguments() As System.String, _
   ByVal destination As System.Object _
) As System.Boolean
'Usage
 
Dim arguments() As System.String
Dim destination As System.Object
Dim value As System.Boolean
 
value = Parser.ParseArguments(arguments, destination)
public static System.bool ParseArguments( 
   System.string[] arguments,
   System.object destination
)
public function ParseArguments( 
    arguments: System.Stringarray of;
    destination: System.TObject
): System.Boolean; static; 
public static function ParseArguments( 
   arguments : System.String[],
   destination : System.Object
) : System.boolean;
public: static System.bool ParseArguments( 
   System.string*[]* arguments,
   System.Object* destination
) 
public:
static System.bool ParseArguments( 
   System.array<String^>^ arguments,
   System.Object^ destination
) 

Parameters

arguments
The actual arguments. The actual arguments.
destination
The resulting parsed arguments. The resulting parsed arguments.

Return Value

true if no errors were detected. Returns true if no errors were detected.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Parser Class
Parser Members
Overload List

Send Feedback